home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The SelectWare System Volume 5 #4
/
The SelectWare System Volume 5 #4.iso
/
acc20005
/
swtdemo.bat
< prev
next >
Wrap
DOS Batch File
|
1993-08-25
|
725b
|
32 lines
@echo off
cls
echo.
echo This demo will be installed to a directory on your hard drive.
echo The name and location of this directory will be your choosing.
echo In order to run the demo you must:
echo 1. Exit the Demonstration system.
echo 2. Go to the Installed Directory.
echo 3. Type gpudemo
echo.
echo Note: A copy of your COMMAND.COM file must be located in the root
echo directory of your C: drive.
echo.
:start
echo Enter selection.
echo 1. Continue with installation
echo 2. Exit
echo.
query.exe
IF ERRORLEVEL 3 goto error
IF ERRORLEVEL 2 goto end
IF ERRORLEVEL 1 goto run
:error
echo Error in input Enter 1 or 2
echo.
GOTO start
:run
INSTALL.EXE
:end